import 'package:PiliPlus/models_new/live/live_room_play_info/stream.dart'; class Playurl { List? stream; Playurl({ this.stream, }); factory Playurl.fromJson(Map json) => Playurl( stream: (json['stream'] as List?) ?.map((e) => Stream.fromJson(e as Map)) .toList(), ); }