toMap method
Map representation of the model
Implementation
Map<String, dynamic> toMap() {
final url = appStoreURL.trim();
final tid = teamId.trim().toUpperCase();
return {
ApiKey.bundleId: bundleId.trim(),
ApiKey.teamId: tid.isEmpty ? null : tid,
ApiKey.appStoreURL: url.isEmpty ? null : url,
};
}