SOLVED - Cannot Read Property 'split' of Undefined

preview_player
Показать описание
Uncaught TypeError: Cannot read properties of undefined (reading 'split')
Uncaught TypeError: Cannot read properties of undefined (reading 'length')

The "Cannot read property 'split' of undefined" error occurs when trying to
call the split() method on a variable that stores an undefined value.
To solve the error, make sure to only call the split method on strings.

i put ? to make it optional
Рекомендации по теме
Комментарии
Автор

hey man I'm getting a error in my flutter app when I'm trying to upload images to AWS lambda function
I/flutter (16967): Upload failed withh4 status code: 500
I/flutter (16967): Error message: {"message":"Cannot read properties of undefined (reading 'split')"}
please help me

RobertPatinson-np