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,
      );