toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (animations != null)
        'animations': animations!.map((value) => value.toJson()).toList(),
      if (image != null) 'image': image!.toJson(),
    };