FFLatLngValue constructor

FFLatLngValue({
  1. FFLatLng? inputValue,
  2. FFVariable? variable,
  3. 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;
}