fromMap static method
Implementation
static SubmitConfigDto fromMap(Map<String, dynamic> map) {
return SubmitConfigDto(
autoTrigger: map["autoTrigger"],
allowCancel: map["allowCancel"],
allowResubmit: map["allowResubmit"],
hapticsEnabled: map["hapticsEnabled"],
timeout: map["timeout"],
action: map["action"],
);
}