get3DModels method
override
Get the Map of 3D models associated with the component.
final models = await myArm.get3DModels();
For more information, see Arm component.
Implementation
@override
Future<Map<String, Mesh>> get3DModels({Map<String, dynamic>? extra}) async {
final request = Get3DModelsRequest()
..name = name
..extra = extra?.toStruct() ?? Struct();
final response = await client.get3DModels(request, options: callOptions);
return response.models;
}