CopyWith.fromJson constructor

CopyWith.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory CopyWith.fromJson(Map<String, Object?> json) {
  return CopyWith(
    constructor: json["constructor"]?.toString(),
    asExtension: json["asExtension"] as bool?,
    suffix: json["suffix"] as String?,
  );
}