toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final flowContent = this.flowContent;
  final flowImportStrategy = this.flowImportStrategy;
  final flowUri = this.flowUri;
  final importOption = this.importOption;
  return {
    'flowContent': ?flowContent,
    'flowImportStrategy': ?flowImportStrategy,
    'flowUri': ?flowUri,
    'importOption': ?importOption,
  };
}