fromJson method

  1. @override
ShapeId? fromJson(
  1. String? json
)

Implementation

@override
ShapeId? fromJson(String? json) {
  if (json == null) {
    return null;
  }
  return ShapeId.parse(json);
}