toJSON method

Map<String, dynamic> toJSON()

Implementation

Map<String, dynamic> toJSON() {
  return {
    'playstore': playstore,
    'appstore': appstore,
    'meta': meta.toJSON(),
    'errors': errors.map((e) => e.toJSON()).toList(),
  };
}