LocatorText.fromJson constructor

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

Implementation

factory LocatorText.fromJson(Map<String, dynamic>? json) => LocatorText(
    before: json?.optNullableString("before"),
    highlight: json?.optNullableString("highlight"),
    after: json?.optNullableString("after"));