FsCommand.fromJson constructor

FsCommand.fromJson(
  1. Map json_
)

Implementation

FsCommand.fromJson(core.Map json_)
    : this(
        left: json_['left'] as core.int?,
        positionOption: json_['positionOption'] as core.String?,
        top: json_['top'] as core.int?,
        windowHeight: json_['windowHeight'] as core.int?,
        windowWidth: json_['windowWidth'] as core.int?,
      );