toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final flow = this.flow;
  final flowState = this.flowState;
  return {
    'displayName': ?displayName,
    'flow': ?flow,
    'flowState': ?flowState,
  };
}