toMap method
Implementation
Map toMap() {
var map = super.toMap();
map['colorMode'] = colorMode;
map['configChanges'] = configChanges;
map['documentLaunchMode'] = documentLaunchMode;
map['flags'] = flags;
map['launchMode'] = launchMode;
map['maxRecents'] = maxRecents;
map['parentActivityName'] = parentActivityName;
map['permission'] = permission;
map['persistableMode'] = persistableMode;
map['screenOrientation'] = screenOrientation;
map['softInputMode'] = softInputMode;
map['targetActivity'] = targetActivity;
map['taskAffinity'] = taskAffinity;
map['theme'] = theme;
map['uiOptions'] = uiOptions;
map['windowLayout'] = windowLayout?.toMap();
return map;
}