buildFromProps method

Widget buildFromProps({
  1. required LoadingIndicatorProperties props,
  2. required double height,
  3. required double width,
})

Implementation

Widget buildFromProps({
  required LoadingIndicatorProperties props,
  required double height,
  required double width,
}) {
  final node = LoadingIndicatorNode(
    id: '',
    name: 'LoadingIndicator',
    basicBoxLocal: NodeBox(0, 0, width, height),
    retainedOuterBoxLocal: NodeBox(0, 0, width, height),
    properties: props,
  );
  return buildFromNode(node);
}