toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  return {
    keyId: id,
    keyTitle: title,
    keyIconResourceName: iconResourceName,
    keyAndroidArg: androidArg?.toMap(),
    keyIosArg: iosArg?.toMap(),
  };
}