getStyleBuilderUrls static method

  1. @Deprecated('Use styleBuilderUrls getter instead')
List<String> getStyleBuilderUrls()

Get URLs for the style builder.

Returns

  • A list of URLs configured for the style builder.

Implementation

@Deprecated('Use styleBuilderUrls getter instead')
static List<String> getStyleBuilderUrls() {
  final OperationResult resultString = staticMethod(
    'Debug',
    'getStyleBuilderUrls',
  );
  final List<dynamic> retval = resultString['result'];
  return List<String>.from(retval);
}