SpriteSheet.fromJson constructor

SpriteSheet.fromJson(
  1. Map json_
)

Implementation

SpriteSheet.fromJson(core.Map json_)
    : this(
        columnCount: json_['columnCount'] as core.int?,
        endTimeOffset: json_['endTimeOffset'] as core.String?,
        filePrefix: json_['filePrefix'] as core.String?,
        format: json_['format'] as core.String?,
        interval: json_['interval'] as core.String?,
        quality: json_['quality'] as core.int?,
        rowCount: json_['rowCount'] as core.int?,
        spriteHeightPixels: json_['spriteHeightPixels'] as core.int?,
        spriteWidthPixels: json_['spriteWidthPixels'] as core.int?,
        startTimeOffset: json_['startTimeOffset'] as core.String?,
        totalCount: json_['totalCount'] as core.int?,
      );