OutlineFill.fromJson constructor

OutlineFill.fromJson(
  1. Map json_
)

Implementation

OutlineFill.fromJson(core.Map json_)
    : this(
        solidFill: json_.containsKey('solidFill')
            ? SolidFill.fromJson(
                json_['solidFill'] as core.Map<core.String, core.dynamic>)
            : null,
      );