fromJson static method

BackgroundTypeFill? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static BackgroundTypeFill? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return BackgroundTypeFill(
    fill: BackgroundFill.fromJson(tdMapFromJson(json['fill'])),
  );
}