GraphicsStatsBucket.fromJson constructor
GraphicsStatsBucket.fromJson(
- Map _json
Implementation
GraphicsStatsBucket.fromJson(core.Map _json)
: this(
frameCount: _json.containsKey('frameCount')
? _json['frameCount'] as core.String
: null,
renderMillis: _json.containsKey('renderMillis')
? _json['renderMillis'] as core.String
: null,
);