updateLocMixerContent method

Future<int> updateLocMixerContent(
  1. String mixerID,
  2. List<CrMixerCotentRect> mixerCotentRects
)

Implementation

Future<int> updateLocMixerContent(
    String mixerID, List<CrMixerCotentRect> mixerCotentRects) async {
  final String mixerCotentRectsStr = mixerCotentRects
      .map((rect) => json.encode(rect.toJson()))
      .toList()
      .toString();
  return CrImpl.instance.updateLocMixerContent(mixerID, mixerCotentRectsStr);
}