class Top { dynamic result; Top({this.result}); factory Top.fromJson(Map json) => Top( result: json['result'] as dynamic, ); }