home method

  1. @override
Future<bool> home({
  1. Map<String, dynamic>? extra,
})
override

Run the homing sequence and return true if completed successfully.

var homed = await myGantry.home();

For more information, see Gantry component.

Implementation

@override
Future<bool> home({Map<String, dynamic>? extra}) async {
  final request = HomeRequest()
    ..name = name
    ..extra = extra?.toStruct() ?? Struct();
  final response = await client.home(request);
  return response.homed;
}