PaintProfile.fromJson constructor

PaintProfile.fromJson(
  1. List value
)

Implementation

factory PaintProfile.fromJson(List<dynamic> value) =>
    PaintProfile(value.map((e) => e as num).toList());