AnnotationsSummaryLayers.fromJson constructor
AnnotationsSummaryLayers.fromJson(
- Map json_
Implementation
AnnotationsSummaryLayers.fromJson(core.Map json_)
: this(
allowedCharacterCount: json_.containsKey('allowedCharacterCount')
? json_['allowedCharacterCount'] as core.int
: null,
layerId: json_.containsKey('layerId')
? json_['layerId'] as core.String
: null,
limitType: json_.containsKey('limitType')
? json_['limitType'] as core.String
: null,
remainingCharacterCount: json_.containsKey('remainingCharacterCount')
? json_['remainingCharacterCount'] as core.int
: null,
updated: json_.containsKey('updated')
? json_['updated'] as core.String
: null,
);