create static method

Implementation

static Future<CurrentPlatform> create() async {
  final instance = CurrentPlatform._();
  instance._name = await instance.getName();
  return instance;
}