class UserModel {
String? token;
bool? success ;
UserModel({this.token , this.success});
UserModel.fromJson(Map<String, dynamic> j...
For further actions, you may consider blocking this person and/or reporting abuse
I'm not sure what you want to achieve here but this works for me on DartPad: