toMap method
Implementation
Map<String, dynamic> toMap() => <String, dynamic>{
"id": id,
"title": title,
"description": description,
"isScrollable": isScrollable,
"fields": fields == null ? null : List<dynamic>.from(fields!.map((UProcessField x) => x.toMap())),
"message": message,
"messageBox": messageBox,
"steps": List<dynamic>.from(steps.map((UProcessStepStatus x) => x.toMap())),
};