ActivityInfo.fromMap constructor
ActivityInfo.fromMap(
- Map map
Implementation
ActivityInfo.fromMap(Map map) : super.fromMap(map) {
colorMode = map['colorMode'];
configChanges = map['configChanges'];
documentLaunchMode = map['documentLaunchMode'];
flags = map['flags'];
launchMode = map['launchMode'];
maxRecents = map['maxRecents'];
parentActivityName = map['parentActivityName'];
permission = map['permission'];
persistableMode = map['persistableMode'];
screenOrientation = map['screenOrientation'];
softInputMode = map['softInputMode'];
targetActivity = map['targetActivity'];
taskAffinity = map['taskAffinity'];
theme = map['theme'];
uiOptions = map['uiOptions'];
windowLayout = map['windowLayout'] != null
? WindowLayout.fromMap(map['windowLayout'])
: null;
}