Matrix.fromJson constructor

Matrix.fromJson(
  1. Map<String, dynamic> json
)

Returns a restored matrix from a serializable map

Implementation

factory Matrix.fromJson(Map<String, dynamic> json) => fromMatrixJson(json)!;