toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    'appID': appID,
    'appName': appName,
    'webUrl': webUrl,
    'youtube': youtube,
    'image': image,
    'open': open,
    'order': order,
    'category': category?.toMap(),
    'description': description?.toMap(),
    'android': android.toMap(),
    'ios': ios.toMap(),
  };
}