TextRotation.fromJson constructor

TextRotation.fromJson(
  1. Map json_
)

Implementation

TextRotation.fromJson(core.Map json_)
  : this(
      angle: json_['angle'] as core.int?,
      vertical: json_['vertical'] as core.bool?,
    );