fromJson static method

OwesMoneyList fromJson(
  1. dynamic wrapped
)
override

Implementation

static OwesMoneyList fromJson(wrapped) => wrapped is OwesMoneyList
    ? wrapped
    : OwesMoneyList(wrapped as Map<String, dynamic>, update: true);