setGlobalProperties method

  1. @override
Future<bool?> setGlobalProperties(
  1. Map<String, String>? globalProperties
)
override

Sets global properties.

Implementation

@override
Future<bool?> setGlobalProperties(
    Map<String, String>? globalProperties) async {
  if (globalProperties != null) {
    saveLocal(globalProperties);
  }
  return true;
}