GraphicsStatsBucket.fromJson constructor

GraphicsStatsBucket.fromJson(
  1. 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,
      );