FFLatLngValue constructor
FFLatLngValue({
- FFLatLng? inputValue,
- FFVariable? variable,
- FFLatLng? mostRecentInputValue,
Implementation
factory FFLatLngValue({
FFLatLng? inputValue,
FFVariable? variable,
FFLatLng? mostRecentInputValue,
}) {
final result = create();
if (inputValue != null) result.inputValue = inputValue;
if (variable != null) result.variable = variable;
if (mostRecentInputValue != null)
result.mostRecentInputValue = mostRecentInputValue;
return result;
}